home *** CD-ROM | disk | FTP | other *** search
/ Delphi 2 - Developers' Solutions / Delphi 2 Developers' Solutions.iso / dds / chap07 / howto04 / scanners / scantest.dpr < prev    next >
Encoding:
Text File  |  1995-09-02  |  228 b   |  14 lines

  1. program Scantest;
  2.  
  3. uses
  4.   Forms,
  5.   Scanform in 'SCANFORM.PAS' {ScannerTestForm},
  6.   Scanners in 'SCANNERS.PAS';
  7.  
  8. {$R *.RES}
  9.  
  10. begin
  11.   Application.CreateForm(TScannerTestForm, ScannerTestForm);
  12.   Application.Run;
  13. end.
  14.